home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.lha / SmallEiffel / lib_se / loop_variant.e < prev    next >
Text File  |  1998-12-22  |  2KB  |  98 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr 
  4. --                       http://www.loria.fr/SmallEiffel
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it 
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later 
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License 
  11. -- for  more  details.  You  should  have  received a copy of the GNU General 
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. deferred class LOOP_VARIANT
  17.    --
  18.    -- For a variant clause of a loop.
  19.    -- 
  20.    --    LOOP_VARIANT_1 : no tag.
  21.    --    LOOP_VARIANT_2 : with tag.
  22.    --
  23.  
  24. inherit GLOBALS;
  25.  
  26. feature
  27.    
  28.    comment: COMMENT;
  29.    
  30.    expression: EXPRESSION;
  31.  
  32.    current_type: TYPE;
  33.  
  34. feature
  35.  
  36.    frozen use_current: BOOLEAN is
  37.       do
  38.      Result := expression.use_current;
  39.       end;
  40.    
  41.    pretty_print is
  42.       deferred
  43.       end;
  44.    
  45.    start_position: POSITION is
  46.       do
  47.      Result := expression.start_position;
  48.       end;
  49.    
  50.    frozen to_runnable(ct: TYPE): like Current is
  51.       local
  52.      e: like expression;
  53.       do
  54.      if current_type = Void then
  55.         current_type := ct;
  56.         e := expression.to_runnable(ct);
  57.         if e = Void then
  58.            error(start_position,"Bad loop variant.");
  59.         else
  60.            expression := e;
  61.            if not expression.result_type.is_integer then
  62.           error(expression.start_position,
  63.             "Expression of variant must be INTEGER.");
  64.            end;
  65.         end;
  66.         if nb_errors = 0 then
  67.            Result := Current;
  68.         end;
  69.      else
  70.         Result := twin;
  71.         Result.set_current_type(Void);
  72.         Result := Result.to_runnable(ct);
  73.      end;
  74.       end;
  75.  
  76. feature {E_LOOP}
  77.  
  78.    frozen afd_check is
  79.       do
  80.      expression.afd_check;
  81.       end;
  82.  
  83. feature {LOOP_VARIANT}
  84.    
  85.    frozen set_current_type(ct: like current_type) is
  86.       do
  87.      current_type := ct;
  88.       ensure
  89.      current_type = ct;
  90.       end;
  91.    
  92. invariant
  93.    
  94.    expression /= Void
  95.    
  96. end -- LOOP_VARIANT
  97.  
  98.